home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_kdelibs.idb / usr / freeware / kde / include / kstring.h.z / kstring.h
Encoding:
C/C++ Source or Header  |  1999-01-26  |  683 b   |  25 lines

  1. #ifndef __kstring_h__
  2. #define __kstring_h__
  3.  
  4. #include <qstring.h>
  5.  
  6. QString& operator<<( QString&, short );
  7. QString& operator<<( QString&, ushort );
  8. QString& operator<<( QString&, int );
  9. QString& operator<<( QString&, uint );
  10. QString& operator<<( QString&, long );
  11. QString& operator<<( QString&, ulong );
  12. QString& operator<<( QString&, float );
  13. QString& operator<<( QString&, double );
  14. QString& operator<<( QString&, const char* );
  15.  
  16. /* replaces QString::sprintf, where it's not sure, that 256
  17.    bytes are enough for the resulting string.
  18.    
  19.    ksprintf adds to the 256 default bytes the len of every
  20.    used string. 
  21.    */
  22. void ksprintf(QString *str, const char *fmt, ...);
  23.  
  24. #endif
  25.